
        textarea {
            width: 100%;
            height: 180px;
            padding: 12px;
            border-radius: 6px;
            font-family: 'Consolas', 'Monaco', monospace;
            resize: vertical;
            box-sizing: border-box;
        }
        textarea:focus {
            outline: none;
        }

        .output-label {
            font-weight: 600;
            font-size: 1.2rem;
            margin-top: 20px;
            margin-bottom: 10px;
            text-align: right; /* Align label to the right for Arabic */
            width: 100%;
            display: block;
        }
        .message-box {
            position: absolute;
            top: 0px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #dadada;
            color: black;
            padding: 15px;
            border-radius: 8px;
            visibility: hidden;
            text-align: right;
            transition: all 500ms ease-in-out;
        }
        .message-box.show {
            top: 50px;
            visibility: visible;
        }
        .radio-group label {
            /* Hide the actual radio input */
            display: flex;
            align-items: center;
            cursor: pointer;
        }
        .radio-group input[type="radio"] {
            /* Visually hide the radio button but keep it accessible */
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }
        .radio-group .radio-button-label {
            padding: 5px 15px;
            border-radius:30px; /* Full rounded corners */
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.2s ease-in-out;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }
        .radio-group input[type="radio"]:checked + .radio-button-label {

            transform: translateY(-1px);
        }


